home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 398 / 398.xpi / chrome / forecastfox.jar / content / parser / parser-item.js < prev    next >
Text File  |  2010-02-04  |  1KB  |  37 lines

  1. /*------------------------------------------------------------------------------
  2.   Copyright (c) 2008 Ensolis, LLC. All Rights Reserved.
  3.   ----------------------------------------------------------------------------*/
  4.  
  5. /******************************************************************************
  6.  * Interface for describing a parser item.  The component that
  7.  * implements this interface should not be called directly, but instead
  8.  * gotten from the parser service interface.
  9.  * 
  10.  * @status    FROZEN
  11.  * @version   1.0
  12.  ******************************************************************************/
  13. function ParserItem() 
  14. {
  15.   this._properties = {};
  16. }
  17. ParserItem.prototype = {
  18.   __proto__:  new ItemBase("ParserItem"),
  19.             
  20.   ////////////////////////////////
  21.   // ffIParserItem
  22.  
  23.   /**
  24.    * Target the item applies to.
  25.    */
  26.   get target() { return this.getProperty("target"); },
  27.   
  28.   /**
  29.    * Index of the item.
  30.    */
  31.   get index() { return this.getProperty("index"); },
  32.   
  33.   /**
  34.    * Name of the parser item.
  35.    */
  36.   get name() { return this.getProperty("name"); }
  37. };